home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / utility / sccan.zip / UNIT2.PAS < prev    next >
Pascal/Delphi Source File  |  1996-07-09  |  652b  |  38 lines

  1. unit Unit2;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, TabNotBk, StdCtrls, Buttons, Unit3;
  8.  
  9. type
  10.   TScanHelp = class(TForm)
  11.     TabbedNotebook1: TTabbedNotebook;
  12.     Memo1: TMemo;
  13.     Memo2: TMemo;
  14.     Memo3: TMemo;
  15.     Memo4: TMemo;
  16.     BitBtn1: TBitBtn;
  17.     BitBtn2: TBitBtn;
  18.     procedure BitBtn2Click(Sender: TObject);
  19.   private
  20.     { Private declarations }
  21.   public
  22.     { Public declarations }
  23.   end;
  24.  
  25. var
  26.   ScanHelp: TScanHelp;
  27.  
  28. implementation
  29.  
  30. {$R *.DFM}
  31.  
  32. procedure TScanHelp.BitBtn2Click(Sender: TObject);
  33. begin
  34.  AboutBox.ShowModal;
  35. end;
  36.  
  37. end.
  38.